home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / misc / libx11inc.lha / X11 / Xm / Separator.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-13  |  1.2 KB  |  51 lines

  1. /* 
  2.  * (c) Copyright 1989, 1990, 1991, 1992 OPEN SOFTWARE FOUNDATION, INC.
  3.  * ALL RIGHTS RESERVED
  4. */ 
  5. /*   $RCSfile: Separator.h,v $ $Revision: 1.17 $ $Date: 92/05/14 12:57:16 $ */
  6. /*
  7. *  (c) Copyright 1987, 1988, 1989, 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  8. /*  Separator Widget  */
  9. #ifndef _XmSeparator_h
  10. #define _XmSeparator_h
  11.  
  12. #include <Xm/Xm.h>
  13.  
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17.  
  18. #ifndef XmIsSeparator
  19. #define XmIsSeparator(w) XtIsSubclass(w, xmSeparatorWidgetClass)
  20. #endif /* XmIsSeparator */
  21.  
  22. externalref WidgetClass xmSeparatorWidgetClass;
  23.  
  24. typedef struct _XmSeparatorClassRec * XmSeparatorWidgetClass;
  25. typedef struct _XmSeparatorRec      * XmSeparatorWidget;
  26.  
  27.  
  28. /********    Public Function Declarations    ********/
  29. #ifdef _NO_PROTO
  30.  
  31. extern Widget XmCreateSeparator() ;
  32.  
  33. #else
  34.  
  35. extern Widget XmCreateSeparator( 
  36.                         Widget parent,
  37.                         char *name,
  38.                         ArgList arglist,
  39.                         Cardinal argcount) ;
  40.  
  41. #endif /* _NO_PROTO */
  42. /********    End Public Function Declarations    ********/
  43.  
  44.  
  45. #ifdef __cplusplus
  46. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  47. #endif
  48.  
  49. #endif /* _XmSeparator_h */
  50. /* DON'T ADD STUFF AFTER THIS #endif */
  51.